home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NOVA - For the NeXT Workstation
/
NOVA - For the NeXT Workstation.iso
/
SourceCode
/
TextORama
/
TextORama.h
< prev
next >
Wrap
Text File
|
1992-12-19
|
748b
|
32 lines
/* TextORama.h
*
* TextORama is a subclass of Object which acts as the
* application delegate.
*
*
* You may freely copy, distribute, and reuse the code in this example.
* NeXT disclaims any warranty of any kind, expressed or implied, as to its
* fitness for any particular use.
*
* Written by: Sharon Zakhour
* Created: Oct/91
*/
#import <objc/Object.h>
@interface TextORama:Object
{
id dateField;
id socSecField;
id phoneField;
id emacsScrollView;
}
char *dateFilter(id textObj, char *inputText, int *inputLength, int position);
char *socSecFilter(id textObj, char *inputText, int *inputLength, int position);
char *phoneFilter(id textObj, char *inputText, int *inputLength, int position);
- loadEmacsScrollView;
@end